home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 316 / libsrc / fileno.c < prev    next >
Encoding:
C/C++ Source or Header  |  1988-10-20  |  105 b   |  11 lines

  1.  
  2. /* fileno */
  3.  
  4. #include "std-guts.h"
  5.  
  6. int fileno (f)
  7. struct file * f;
  8. {
  9.   return(f->handle);
  10. }
  11.